home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992 June: ROMin Holiday / ADC Developer CD (1992-06) (''ROMin Holiday'')_iso / Developer Connection - 06-1992.iso / Developer Essentials / DTS Sample Code / Snippets / Platforms & Tools / MacApp / AEGestalt 1.0b3 / ULookupCommand.h < prev    next >
Encoding:
Text File  |  1991-12-11  |  616 b   |  31 lines  |  [TEXT/MPS ]

  1. //    ULookupCommand.h
  2. //     Copyright © 1991 by Apple Computer, Inc. All rights reserved.
  3. //    Kent Sandvik DTS
  4. //    This file contains the class for TLookup command, used for
  5. //    doing the query over the network
  6.  
  7.  
  8. #ifndef __LOOKUPCOMMAND__
  9. #define __LOOKUPCOMMAND__
  10.  
  11. #ifndef __AEGESTALT__
  12. #include "UAEGestalt.h"
  13. #endif
  14.  
  15. #ifndef __AEDOCUMENT__
  16. #include "UAEDocument.h"
  17. #endif
  18.  
  19. class TAEDocument;
  20.  
  21. class TLookupCommand : public TCommand {
  22. public:
  23.                                 TLookupCommand();            
  24.     virtual pascal void            ILookupCommand(CommandNumber, TAEDocument*);
  25.     virtual pascal void            DoIt();
  26.  
  27. //    FIELDS    
  28.     TAEDocument*                fDocument;
  29. };
  30.  
  31. #endif